home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / RIBGeneralPolygon.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  547 b   |  21 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5. #import <appkit/appkit.h>
  6.  
  7. #import "RIBCommand.h"
  8.  
  9. @interface RIBGeneralPolygon:RIBCommand
  10. {
  11.   RtInt  nLoops, *nVertices;
  12. }
  13.  
  14. - setNLoops:(RtInt)newNLoops nVertices:(RtInt *)newNVertices 
  15.      n:(int)newN tokens:(RtToken *)newTokens parms:(RtPointer *)newParms archiveVector:(char **)newArchiveVector
  16.      printfTypeVector:(int *)newPrintfTypeVector printfNVector:(int *)newPrintfNVector;
  17. - (RtInt)nLoops;
  18. - (RtInt *)nVertices;
  19.  
  20. @end
  21.